/*
  ArtToSpr Artworks/Draw to Sprite convertor
  Copyright (c) 1998 Tony Houghton

  This source is distributed under the GPL. Please see the file
  "COPYING" for details.
*/

#include <stdlib.h>

#include "territory.h"

#include "err.h"
#include "msgtrans.h"
#include "version.h"

const char *version_date()
{
  static char datestr[64];

  if (E(xterritory_convert_standard_date(-1, &version_utc,
  	datestr, sizeof(datestr),
  	NULL)))
    return NULL;

  return datestr;
}
